General Settings

This section discusses the options displayed on the General tab for a file type. This should not be confused with the General tab for the default file type, which refers to options described in the Editor Settings section below.

Filename(s)

This field determines the expression that is used to match a filename belonging to this file type. The format of the filename may be any DOS/UNIX style filename match, using æ*Æ and æ?Æ as wildcards to match a range of characters. Multiple filename matches may be specified using a semi-colon as a delimiter.

For example, to match any files with the extension TXT:-

*.txt

To match any files with the extensions C, CPP or H:-

*.c;*.cpp;*.h

To match any files which start with the name READ:-

read*.*